home *** CD-ROM | disk | FTP | other *** search
- class StreetSpace extends MovieClip
- {
- var mcName;
- var xPos;
- var yPos;
- var tileNum;
- var fromLeft;
- var fromRight;
- var fromTop;
- var fromBottom;
- function StreetSpace(c, x, y, n, t, r, b, l)
- {
- super();
- this.mcName = c;
- this.xPos = x;
- this.yPos = y;
- this.tileNum = n;
- this.fromLeft = l;
- this.fromRight = r;
- this.fromTop = t;
- this.fromBottom = b;
- this.mcName.lLine._visible = !l;
- this.mcName.rLine._visible = !r;
- this.mcName.tLine._visible = !t;
- this.mcName.bLine._visible = !b;
- }
- function getMyInfo()
- {
- var _loc2_ = {};
- for(var _loc3_ in this)
- {
- _loc2_[_loc3_] = this[_loc3_];
- }
- return _loc2_;
- }
- }
-